home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / povscn / math / pov / witch < prev   
Text File  |  1993-09-28  |  1KB  |  49 lines

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. // By Alexander Enzmann
  4. /* sample quartic scene file written by Alexander Enzmann */
  5.  
  6. #include "colors.inc"
  7. #include "shapes.inc"
  8. #include "textures.inc"
  9.  
  10. /* Witch of Agnesi */
  11. intersection {
  12.    quartic {
  13.       < 0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  1.0,  0.0,  0.0,  0.0,
  14.         0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0,
  15.         0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  1.0,  0.0,  0.04,
  16.         0.0,  0.0,  0.0,  0.0,  0.04 >
  17.  
  18.       texture {
  19.          pigment { Red }
  20.          finish {
  21.             specular 1.0
  22.             roughness 0.05
  23.             ambient 0.2
  24.             diffuse 0.8
  25.          }
  26.       }
  27.    }
  28.  
  29.    sphere {
  30.       <0, 0, 0>, 1
  31.       texture { pigment { Clear } }
  32.    }
  33.  
  34.    bounded_by { sphere { <0, 0, 0>, 1.5 } }
  35.    rotate <30, 0, 180>
  36. }
  37.  
  38. camera {
  39.    location  <0.0, 0.0, -3.0>
  40.    direction <0.0, 0.0,  1.0>
  41.    up        <0.0, 1.0,  0.0>
  42.    right     <4/3, 0.0,  0.0>
  43. }
  44.  
  45. light_source { <200, 30, -300> colour White }
  46.  
  47. light_source { <-200, 30, -300> colour White }
  48.  
  49.